body {
  /* Set the background image URL */
  background-image: url("background.jpg");

}


main {
  text-align: center;
}

h4 {
  text-align: center;
}

.property-container {
  display: flex;
  justify-content: center;
}

.aboutme div {
  text-align: left;
  max-width: fit-content;
  margin: 0 auto;
}

.center-text {
  text-align: center;
}

.bottom-space {
  padding-bottom: 60px;
}


.property-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px;
  margin: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.property-card:hover {
  background-color: rgb(176, 237, 218);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.property-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.property-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}

.property-price {
  font-size: 16px;
  font-weight: bold;
  color: #007bff;
}

.property-description {
  font-size: 14px;
  margin-bottom: 10px;
}

.property-link {
  font-size: 14px;
  color: #007bff;
  text-decoration: none;
}

.property-link:hover {
  text-decoration: underline;
}


/* Property Detail Page */
.property {
  max-width: 1024px;
  margin: 20px auto;
}

.property h1 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.property img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 1px 1px 5px black;
}

.property ul li {
  list-style: none;
}

.property p {
  margin-bottom: 5px;
}

.property ul {
  list-style-type: disc;
  margin-left: 20px;
}

.property ul li {
  margin-bottom: 5px;
}

.property-description {
  margin-bottom: 10px;
}

.property-contact a {
  color: #007bff;
  text-decoration: none;
}


nav a {
  color: black;
  text-decoration: none;
  margin-right: 20px;
  font-size: 20px;
}

nav a:hover {
  color: #007bff;
  /* Change color on hover */
}

nav a.active {
  font-weight: bold;
}

/* Center the navigation links horizontally */
nav {
  display: flex;
  justify-content: center;
}

/* CSS for Form Container */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-container label {
  display: block;
  margin-bottom: 10px;
}

.form-container label span {
  font-weight: bold;
}

.form-container input[type="text"],
.form-container input[type="email"] {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px dashed #ccc;
  border-radius: 5px;
}

.form-container input[type="submit"],
.form-container input[type="reset"] {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.form-container input[type="submit"]:hover,
.form-container input[type="reset"]:hover {
  background-color: #0056b3;
}

.form-container div {
  text-align: center;
}

select {
  width: 200px;
  padding: 9px;
  /* Increase padding to make the select box bigger */
  border-radius: 5px;
  border: 1px dashed #ccc;
  font-size: 15px;
  /* Increase font-size to make the text bigger */
}

.services-list div {
  text-align: left;
  max-width: fit-content;
  margin: 0 auto;
}

img {
  cursor: pointer;
}

video {
  width: 400px;
  /* Adjust the width to your desired size */
}


.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
  padding: 10px;
}

@media (max-width:400px) {
  body {
    font-size: 14px;
  }
}

@media (min-width: 401px) and (max-width: 800px) {
  body {
    font-size: 15px;
  }
}


/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.prev {
  left: 0%;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active,
.dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}

.correct{
  color:green;
}

.incorrect{
  color:red;
  text-decoration: underline;
}
